home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / lvm2.postinst < prev    next >
Encoding:
Text File  |  2011-01-23  |  420 b   |  23 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. case "$1" in
  6.     configure)
  7.         vgcfgbackup >/dev/null 2>&1 || :
  8.         invoke-rc.d lvm2 start || :
  9.         if [ -x /usr/sbin/update-initramfs ]; then
  10.             update-initramfs -u
  11.         fi
  12.     ;;
  13. esac
  14.  
  15. # Automatically added by dh_installinit
  16. if [ -x "/etc/init.d/lvm2" ]; then
  17.     update-rc.d lvm2 start 26 S . start 50 0 6 . >/dev/null || exit $?
  18. fi
  19. # End automatically added section
  20.  
  21.  
  22. exit 0
  23.